Search Java Code Snippets


  Help us in improving the repository. Add new snippets through 'Submit Code Snippet ' link.





#Java - Code Snippets for '#Swap 2 variables' - 2 code snippet(s) found

 Sample 1. Write a Program to swap 2 variables ( using 3rd variable )

int x = 1;
int y = 2;
int z = x;
x = y;
y = z;

System.out.println("x="+x);
System.out.println("y="+y);

   Like      Feedback     swap 2 variables  code  coding


 Sample 2. Write a Program to swap two variables ( without using 3rd variable )


int x = 1;
int y = 2;

x = x+y;
y = x-y;
x = x-y;

System.out.println("x="+x);
System.out.println("y="+y);

   Like      Feedback     swap 2 variables



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner